home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / APXMDIDV.PAK / APXMDDEV.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  42 lines

  1. //----------------------------------------------------------------------------
  2. //  Project ApxMdiDv
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxMdiDv Application
  7. //  FILE:         apxmddev.h
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TApxMdiDvEditView (TEditView).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(apxmddev_h)              // Sentry, use file only if it's not already included.
  16. #define apxmddev_h
  17.  
  18. #include <owl/editview.h>
  19.  
  20. #include "apxmddva.rh"          // Definition of all resources.
  21.  
  22.  
  23. //{{TEditView = TApxMdiDvEditView}}
  24. class TApxMdiDvEditView : public TEditView {
  25.   public:
  26.     TApxMdiDvEditView(TDocument& doc, TWindow* parent = 0);
  27.     virtual ~TApxMdiDvEditView();
  28.  
  29. //{{TApxMdiDvEditViewVIRTUAL_BEGIN}}
  30.   public:
  31.     virtual void Paint(TDC& dc, bool erase, TRect& rect);
  32. //{{TApxMdiDvEditViewVIRTUAL_END}}
  33. //{{TApxMdiDvEditViewRSP_TBL_BEGIN}}
  34.   protected:
  35.     void EvGetMinMaxInfo(MINMAXINFO far& minmaxinfo);
  36. //{{TApxMdiDvEditViewRSP_TBL_END}}
  37. DECLARE_RESPONSE_TABLE(TApxMdiDvEditView);
  38. };    //{{TApxMdiDvEditView}}
  39.  
  40.  
  41. #endif  // apxmddev_h sentry.
  42.